expandable menu moving image?

whatsitcalled / 2009-05-05 14:52:09   

Hello people,

im very much new to css but have somehow managed to make an expandable menu thanks to these forums, but when i scroll over it also moves the images on my page.

my site is www.carlregan.co.uk

i have tried to search both the forum and google for an answer but with no luck, any advice would be greatly appreciated....

nycbcn2 / 2009-05-05 15:10:11   

In your style.css try adding 270px for left margin:

#content {
height: 100%;
margin: 0 0 0 270px;
top: 0;
}

whatsitcalled / 2009-05-05 15:34:11   

hi thanks for the reply iv just tried it out and its still moving the image down when i scroll over the menu, my images wont go to the top of the page either i think this is something to do with it?

nycbcn2 / 2009-05-05 15:48:27   

Okay, have you tried float:left; in #menu, keeping #content margin left to 270px?

#menu {
    width: 250px;
    overflow: auto;
    top: 20px;
    bottom: 0px;
    left: 20px;
    position: relative;
    height: 100%;
    background-color: #CCCCCC;
    float:left;
}

whatsitcalled / 2009-05-05 15:49:07   

sorry just noticed my link doesnt work

hello

whatsitcalled / 2009-05-05 15:54:21   

IT WORKED!!! thanks for the help!

This thread has been closed, thank you.